home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040607.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12520);
  10.  script_bugtraq_id(10486);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2004-0538", "CAN-2004-0539");
  13.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:8433);
  14.  
  15.  name["english"] = "Security Update 2004-06-07";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing Security Update 2004-06-07.
  21.  
  22. This security update includes the following components :
  23.  DiskImages
  24.  LaunchServices
  25.  Safari
  26.  Terminal
  27.  
  28. This update fixes a security problem which may allow an attacker
  29. to execute arbitrary commands the on the remote host by abusing
  30. of a flaw in Safari and the components listed above. To exploit
  31. this flaw, an attacker would need to set up a rogue web site with
  32. malformed HTML links, and lure the user of the remote host into
  33. visiting them.
  34.  
  35. Solution : 
  36. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-06-07_(_10_3_4).html
  37. http://www.apple.com/downloads/macosx/apple/securityupdate_2004-06-07_(_10_2_8).html
  38.                
  39. Risk factor : High";
  40.  
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Check for Security Update 2004-06-07";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  50.  family["english"] = "MacOS X Local Security Checks";
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencies("ssh_get_info.nasl");
  54.  script_require_keys("Host/MacOSX/packages");
  55.  exit(0);
  56. }
  57.  
  58.  
  59. packages = get_kb_item("Host/MacOSX/packages");
  60. if ( ! packages ) exit(0);
  61.  
  62. uname = get_kb_item("Host/uname");
  63. # MacOS X 10.2.x and 10.3.x only
  64. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.4\.)", string:uname) )
  65. {
  66.   if ( ! egrep(pattern:"^SecUpd2004-06-07", string:packages) ) security_hole(0);
  67. }
  68.